home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 16 / Mac Magazin and MacEasy Magazine CD - Issue 16.iso / Spiele & Edutainment / Soup ƒ / README next >
Text File  |  1995-11-06  |  1KB  |  28 lines

  1. SOUP - by Soren Ragsdale (soren@cs.arizona.edu)
  2.  
  3. SOUP was originally written in ANSI C for UNIX.
  4.  
  5. Both PPC and 68K versions availiable.
  6.  
  7. It takes your phone number and finds what words you can spell using the letters
  8. on the phone.
  9.  
  10. V1.0b1 does not separate words - thus 223-4247 (bad-hair) will read out as
  11. BADHAIR.  Word separations may be included in version 2.
  12.  
  13. Coming soon:
  14.  
  15. hotsoup - I'm taking a CS data structures class, and what I'm learning there will
  16. help me speed up this code TREMENDOUSLY.  Hotsoup uses recursive hash tables to
  17. do word lookups in O(n) time rather than O(n^n) which is what it's at now.  It's
  18. also a HUGE memory hog, and may require as much as 10MB. This version is mainly
  19. intended for UN*X workstations, and will probably be web-accessible.
  20.  
  21. warmsoup - Slower than hotsoup, much faster than soup - this will use
  22. nonrecursive hash tables and a better hash function to hopefully reach a happy
  23. medium between memory usage and speed.
  24.  
  25. I know absolutely no Mac programming (sadly enough), and if anyone would like to
  26. help me write a GUI for Soup they're more than welcome to.  I'm thinking a simple
  27. 3x4 on-screen keypad or something.
  28.